home *** CD-ROM | disk | FTP | other *** search
/ Tokyo Night Life Interactive / Tokyo Night Life Interactive.iso / pc / main / convi / 00067_Script_67 < prev    next >
Text File  |  1995-06-01  |  411b  |  23 lines

  1. on startMovie
  2.     global flag, fuch, c_tel
  3.     set flag = 0
  4.     set c_tel = 0
  5. end startMovie
  6.  
  7. on idle
  8.     global flag
  9.     
  10.     if rollover(4) or rollover(5) then
  11.         set flag = flag + 1
  12.         if flag = 10 then
  13.             cursor 200
  14.         end if
  15.         if flag > 20 then
  16.             set flag = 0
  17.             cursor -1
  18.         end if
  19.     else
  20.         cursor -1
  21.     end if
  22. end idle
  23.